CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - VRP algorithm

搜索资源列表

  1. VRP

    1下载:
  2. Genetic Algorithm for VRP
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:42731
    • 提供者:张保权
  1. yqsfmatlab.rar

    1下载:
  2. 强大的蚁群算法matlab程序源代码,可以迅速求解vrp等np难问题。,Ant colony algorithm matlab powerful source code, you can quickly solve the difficult problem of np such vrp.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2017-04-01
    • 文件大小:15284
    • 提供者:储育青
  1. yiqunsuanfa.rar

    1下载:
  2. 实用的蚁群算法,程序试图对具有31个城市的VRP进行求解,简单实用,Ant colony algorithm practical, the program attempts to have 31 cities to solve the VRP, simple and practical
  3. 所属分类:Special Effects

    • 发布日期:2017-03-30
    • 文件大小:6555
    • 提供者:刘柳
  1. Cpp

    0下载:
  2. VRP问题蚁群算法的c++源码,很具有代表性-VRP problem of the ant colony algorithm c++ source code, it is a representative
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-07
    • 文件大小:11604
    • 提供者:任树伟
  1. tabu-search-matlab

    0下载:
  2. TSP for VRP solution w/ capacity constraint using Tabu Search Algorithm
  3. 所属分类:matlab

    • 发布日期:2017-03-22
    • 文件大小:4142
    • 提供者:didin rosid
  1. matlabforVRP

    2下载:
  2. 解决车辆路径问题的MATLAB代码,经过测试可以使用。算法采用遗传算法,对于写人工智能领域的相关论文有很大的帮助-Solve the vehicle routing problem with the MATLAB code that can be used after testing. Algorithm using genetic algorithms, artificial intelligence for the written papers of great help
  3. 所属分类:AI-NN-PR

    • 发布日期:2015-09-20
    • 文件大小:6693
    • 提供者:ly
  1. 遗传算法求解vrp问题

    0下载:
  2. 遗传算法,使用MATLAB进行编程,求解VRP问题(Genetic algorithm for solving VRP problem)
  3. 所属分类:Windows编程

    • 发布日期:2017-07-19
    • 文件大小:7168
    • 提供者:GWJ
  1. 紧急搜索求VRP

    0下载:
  2. TS算法通过引入一个灵活的存储结构和相应的禁忌准则来避免迂回搜索,并通过藐视准则来赦免一些被禁忌的优良状态,进而保证多样化的有效探索以最终实现全局优化(TS algorithm by introducing a flexible storage structure and corresponding tabu criteria to avoid circuit search, and the contempt of criterion to pardon a little good state
  3. 所属分类:书籍源码

    • 发布日期:2018-01-02
    • 文件大小:5120
    • 提供者:春天里的
  1. vrp

    1下载:
  2. 应用蚁群算法,求解路径规划、路径选择、最优路径的VRP等问题。(Ant colony algorithm to solve VRP problem)
  3. 所属分类:matlab例程

    • 发布日期:2018-04-19
    • 文件大小:2048
    • 提供者:Grace-M
  1. Three-methods-for-VRP

    0下载:
  2. 包括遗传算法,构建法和改进法在内的3种方法实现VRP问题。供初学者学习和参考(3 methods, including genetic algorithm, construction method and improved method, are used to realize the VRP problem. For beginners to learn and refer to)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2018-04-29
    • 文件大小:6419456
    • 提供者:chaostu
  1. 遗传算法实现的vrp问题求解

    2下载:
  2. 实现VRP问题遗传算法,通过遗传算法解决由MATLAB来说明(Genetic algorithm for realizing VRP problemThe solution of the genetic algorithm is explained by MATLAB)
  3. 所属分类:matlab例程

    • 发布日期:2020-06-28
    • 文件大小:4096
    • 提供者:兰心天天
  1. GA(vrp)

    8下载:
  2. 用MATLAB编写遗传算法代码求解带有时间窗的VRP问题(The genetic algorithm code is used to solve the VRP problem with time window.)
  3. 所属分类:matlab例程

    • 发布日期:2018-10-05
    • 文件大小:2048
    • 提供者:淡墨zyw
  1. Genetic algorithm to vehicle routing problem

    1下载:
  2. 这个代码是采用遗传算法解决车辆路径优化问题,大家一块学习(This code is to solve the vehicle routing optimization problem with genetic algorithm.)
  3. 所属分类:Windows编程

    • 发布日期:2019-10-19
    • 文件大小:2048
    • 提供者:潇1默
  1. VRP

    1下载:
  2. 利用遗传算法解决vrp问题,其中车辆承载能力固定,车场只有一个。(Genetic algorithm is used to solve VRP problem, in which the vehicle carrying capacity is fixed and there is only one garage.)
  3. 所属分类:matlab例程

    • 发布日期:2020-01-07
    • 文件大小:184320
    • 提供者:田中樱
  1. vrp

    1下载:
  2. 假设在一个供求关系系统中,车辆从货源取货,配送到对应的若干配送点。车辆存在最大载货量,且配送可能有时间限制。需要合理安排取货时间,组织适当的行车路线,使用户需求得到满足,同时使某个代价函数最小,比如总工作时间最少、路径最短等。 可以看出TSP问题是VRP问题的一种简单特殊形式。因此,VRP也是一种NP hard 问题。 目前解决此种问题的办法有多种,主要以启发式算法为主。包括退火算法、遗传算法、蚁群算法、禁忌算法等,本文介绍两种比较简单算法:C-W节约算法和遗传算法。(Assume that
  3. 所属分类:matlab例程

    • 发布日期:2019-10-19
    • 文件大小:4096
    • 提供者:HappyppaH
  1. 蚁群VRP

    2下载:
  2. 用蚁群算法解决VRP问题,包含基本蚁群算法(我记得不含时间窗约束)(Using ant colony algorithm to solve VRP problem, including basic ant colony algorithm)
  3. 所属分类:matlab例程

    • 发布日期:2019-10-14
    • 文件大小:9216
    • 提供者:Shielas
  1. VRP - 副本

    2下载:
  2. 用于求解配送路径优化问题,即vrp问题,算法是蚁群算法,优化目标为路线最短(It is used to solve the distribution path optimization problem, that is vrpentire. The algorithm is ant colony algorithm, and the optimization goal is the shortest route)
  3. 所属分类:matlab例程

    • 发布日期:2020-08-14
    • 文件大小:2048
    • 提供者:小时代8884
  1. TSP&VRPTW_BenchMark

    2下载:
  2. TSP算法和vrp算法,用于解决旅商问题和物流路线等问题,内含源代码(Tsp algorithm and VRP algorithm, which are used to solve the problems of travel business and logistics route, and contain the source code)
  3. 所属分类:matlab例程

    • 发布日期:2020-06-28
    • 文件大小:4806656
    • 提供者:byxws
  1. MATLAB求解VRP

    3下载:
  2. 遗传算法、模拟退火算法、禁忌搜索算法求解VRP问题的matlab程序(Matlab program of genetic algorithm, simulated annealing algorithm, tabu search algorithm to solve VRP problem)
  3. 所属分类:matlab例程

    • 发布日期:2020-12-16
    • 文件大小:25600
    • 提供者:李太白12138
  1. vrp

    1下载:
  2. 遗传算法求解vrptw,带时间窗约束的车辆路径问题(Genetic algorithm for VRPTW vehicle routing problem with time window constraints)
  3. 所属分类:matlab例程

    • 发布日期:2021-04-16
    • 文件大小:1024
    • 提供者:chenrens
« 1 23 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com